home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wlib11_2.zip / EXAMPLES.EXE / EXAM128.C < prev    next >
C/C++ Source or Header  |  1991-03-13  |  249b  |  11 lines

  1.   #include "window.h"
  2.  
  3.   main()
  4.   {
  5.     int row,col;
  6.     MoveCursor(10,15);
  7.     GetCursorPosition(&row,&col,0);
  8.     WindowInitializeSystem();
  9.     VideoPrintf("\nThe row of the cursor is %d\nThe column is %d",
  10.                  row,col);
  11.   }